home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
optypes.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
790b
|
21 lines
/* RCSVER $Id: optypes.sql,v 1.3 1999-03-19 09:49:32-06 randy CURRENT $ */
/* *************************************************************************
* Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
*
* Name: optypes.sql
* Date: 02/17/1999
* memo: Randy Wood
* Description: Create the optypes table. This table contains the
* operator types (bus driver, rev. serv. technician, etc.)
* Changes:
************************************************************************* */
CREATE TABLE optypes
(
op_type NUMBER(38), /* Type of operator */
op_description VARCHAR2(30), /* Description of operator */
subsys_id NUMBER(38)
CONSTRAINT ref1_optypes REFERENCES subsystems(id)
ON DELETE CASCADE,
CONSTRAINT pk_optypes PRIMARY KEY (op_type)
);